home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / System / PPCReleaseDEV / include / powerup / ppclib / memory.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-21  |  601 b   |  19 lines

  1. #ifndef POWERUP_PPCLIB_MEMORY_H
  2. #define POWERUP_PPCLIB_MEMORY_H
  3.  
  4.  
  5. /* Allocate Memory with the Pages marked as NOCACHE synchronisized
  6.    on the PPC. This means the whole memory size which is allocated
  7.    is aligned to 4k pages. So you better use Pools.
  8.  */
  9.    
  10. #define MEMF_NOCACHESYNCPPC    (1L<<29)    /* NoCache synchronized Pools */
  11.  
  12. /* Allocate Memory with the Pages marked as NOCACHE synchronisized
  13.    on the M68k. This means the whole memory size which is allocated
  14.    is aligned to 4k pages. So you better use Pools.
  15.  */
  16. #define MEMF_NOCACHESYNCM68K    (1L<<30)    /* NoCache synchronized Pools */
  17.  
  18. #endif
  19.